From: Richard M. Stallman Date: Thu, 25 Nov 1993 19:38:14 +0000 (+0000) Subject: (quit_throw_to_read_char): X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~93882 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=0dfcc832b8868981e53078442289d1974b3a7a39;p=emacs.git (quit_throw_to_read_char): Look at internal_last_event_frame only if MULTI_FRAME. --- diff --git a/src/keyboard.c b/src/keyboard.c index 8895c54872c..166b8b54779 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -5021,8 +5021,10 @@ quit_throw_to_read_char () if (poll_suppress_count == 0) abort (); #endif +#ifdef MULTI_FRAME if (XFRAME (internal_last_event_frame) != selected_frame) Fhandle_switch_frame (make_lispy_switch_frame (internal_last_event_frame)); +#endif _longjmp (getcjmp, 1); }